home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / InternalFrameAdapter.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  73 lines

  1. /*
  2.  * @(#)InternalFrameAdapter.java    1.3 98/03/16
  3.  * 
  4.  * Copyright 1993-1997 Sun Microsystems, Inc. 901 San Antonio Road, 
  5.  * Palo Alto, California, 94303, U.S.A.  All Rights Reserved.
  6.  * 
  7.  * This software is the confidential and proprietary information of Sun
  8.  * Microsystems, Inc. ("Confidential Information").  You shall not
  9.  * disclose such Confidential Information and shall use it only in
  10.  * accordance with the terms of the license agreement you entered into
  11.  * with Sun.
  12.  * 
  13.  * CopyrightVersion 1.2
  14.  * 
  15.  */
  16.  
  17. package com.sun.java.swing.event;
  18.  
  19. /**
  20.  * An abstract adapter class for receiving internal frame events.
  21.  * The methods in this class are empty. This class exists as
  22.  * convenience for creating listener objects, and is functionally 
  23.  * equivalent to the WindowAdapter class in the AWT.
  24.  * <p>
  25.  * See <a href="http://java.sun.com/docs/books/tutorial/ui/components/windowlistener.html">Writing a Window Listener</a>
  26.  * in <a href="http://java.sun.com/Series/Tutorial/index.html"><em>The Java Tutorial</em></a> and
  27.  * <a href="http://www.awl.com/cp/javaseries/jcl1_2.html">The Java Class Libraries (update)</a>
  28.  *
  29.  * @see InternalFrameEvent
  30.  * @see InternalFrameListener
  31.  * @see java.awt.event.WindowListener
  32.  *
  33.  * @version 1.3 03/16/98
  34.  * @author Thomas Ball
  35.  */
  36. public abstract class InternalFrameAdapter implements InternalFrameListener {
  37.     /**
  38.      * Invoked when an internal frame has been opened.
  39.      */
  40.     public void internalFrameOpened(InternalFrameEvent e) {}
  41.  
  42.     /**
  43.      * Invoked when an internal frame is in the process of being closed.
  44.      * The close operation can be overridden at this point.
  45.      */
  46.     public void internalFrameClosing(InternalFrameEvent e) {}
  47.  
  48.     /**
  49.      * Invoked when an internal frame has been closed.
  50.      */
  51.     public void internalFrameClosed(InternalFrameEvent e) {}
  52.  
  53.     /**
  54.      * Invoked when an internal frame is iconified.
  55.      */
  56.     public void internalFrameIconified(InternalFrameEvent e) {}
  57.  
  58.     /**
  59.      * Invoked when an internal frame is de-iconified.
  60.      */
  61.     public void internalFrameDeiconified(InternalFrameEvent e) {}
  62.  
  63.     /**
  64.      * Invoked when an internal frame is activated.
  65.      */
  66.     public void internalFrameActivated(InternalFrameEvent e) {}
  67.  
  68.     /**
  69.      * Invoked when an internal frame is de-activated.
  70.      */
  71.     public void internalFrameDeactivated(InternalFrameEvent e) {}
  72. }
  73.